home *** CD-ROM | disk | FTP | other *** search
/ PC Elektro 3 / PC-Elektro-3-cd1.bin / KBan 2.0 / KBANSRC.LZH / SRC / PROG / STDAFX.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-19  |  314 b   |  18 lines

  1. /*
  2.  * a header of the source for the precompiled header file
  3.  * Copyright (C) 1997 Kazutaka Hirata <khirata@jove.acs.unt.edu>
  4.  */
  5.  
  6. #ifndef _STDAFX_H_
  7. #define _STDAFX_H_
  8.  
  9. #if _MSC_VER >= 1000
  10. #pragma once
  11. #endif
  12.  
  13. #include <afxwin.h>
  14. #include <afxext.h>
  15. #include <afxcmn.h>
  16.  
  17. #endif /* _STDAFX_H_ */
  18.